home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / Development / PowerD / powerd / modules.lha / modules / gadgets / tapedeck.m < prev    next >
Encoding:
Text File  |  2001-10-28  |  1.2 KB  |  35 lines

  1. /*
  2. **  $VER: tapedeck.h 40.0 (12.3.1993)
  3. **  Includes Release 44.1
  4. **
  5. **  Definitions for the tapedeck BOOPSI class
  6. **
  7. **  (C) Copyright 1992-1999 Amiga, Inc.
  8. **  All Rights Reserved
  9. */
  10. /*****************************************************************************/
  11. MODULE 'utility/tagitem'
  12. /*****************************************************************************/
  13. #define TDECK_Dummy     (TAG_USER+$05000000)
  14. #define TDECK_Mode    (TDECK_Dummy + 1)
  15. #define TDECK_Paused    (TDECK_Dummy + 2)
  16. #define TDECK_Tape    (TDECK_Dummy + 3)
  17. /* (BOOL) Indicate whether tapedeck or animation controls.  Defaults
  18.    * to FALSE. */
  19. #define TDECK_Frames    (TDECK_Dummy + 11)
  20. /* (LONG) Number of frames in animation.  Only valid when using
  21.    * animation controls. */
  22. #define TDECK_CurrentFrame  (TDECK_Dummy + 12)
  23. /* (LONG) Current frame.  Only valid when using animation controls. */
  24. /*****************************************************************************/
  25. /* Possible values for TDECK_Mode */
  26. #define BUT_REWIND  0
  27. #define BUT_PLAY  1
  28. #define BUT_FORWARD   2
  29. #define BUT_STOP  3
  30. #define BUT_PAUSE   4
  31. #define BUT_BEGIN   5
  32. #define BUT_FRAME   6
  33. #define BUT_END     7
  34. /*****************************************************************************/
  35.